home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / dev / gcc / ixemul_src.lha / ixemul-41.0 / gnulib / eqsf2.c < prev    next >
C/C++ Source or Header  |  1994-08-19  |  289b  |  19 lines

  1. #include "common.h"
  2. #ifdef IEEE_SINGBAS
  3. #include <inline/mathieeesingbas.h>
  4. #else
  5. #include <inline/mathffp.h>
  6. #include <inline/mathtrans.h>
  7. #endif
  8.  
  9. int
  10. __eqsf2 (a, b)
  11.      FLOAT a, b;
  12. {
  13. #ifdef IEEE_SINGBAS
  14.   return IEEESPCmp (a, b);
  15. #else
  16.   return SPCmp( SPFieee(a), SPFieee(b));
  17. #endif
  18. }
  19.